Create a variable letter.
Use a switch statement to determine if the letter is a vowel (use lowercase).
Output a message indicating if it's a vowel or not.
hint - a, e, i, o, u, is vowel
let letter = 'j';
switch (letter) {
case 'a':
case 'e':
case 'i':
case 'o':
case 'u':
console.log(letter + " is a vowel.");
break;
default:
console.log(letter + " is not a vowel.");
}
document.getElementById("ex1").innerText = "Chech Console OF A";